* {
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	--black: #0f172a;
	--white: #f9f9f9;
	--gray: #bbbbbb;
}

body {
	margin-left: 25%;
	margin-right: 25%;
	color: var(--white);
	background-color: var(--black);
	transition: background-color 0.5s;
}

body::-webkit-scrollbar {
	width: 1rem;
	height: 1rem;
}

body::-webkit-scrollbar-track {
	border-radius: 1rem;
	margin-block: 0.5rem;
}

body::-webkit-scrollbar-thumb {
	background: linear-gradient(
		#7400b8,
		#6930c3,
		#5e60ce,
		#5390d9,
		#4ea8de,
		#48bfe3,
		#56cfe1,
		#64dfdf,
		#72efdd,
		#80ffdb
	);
	border: 0.25rem solid var(--white);
	border-radius: 1rem;
}

body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(
		#600097,
		#4f2494,
		#47499c,
		#4272ad,
		#3d85b1,
		#3a99b6,
		#3a8c99,
		#419191,
		#56b1a3,
		#57b197
	);
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 1rem;
	width: 100%;
	z-index: 999;
	padding: 1rem 0;
	font-weight: 600;
	-webkit-backdrop-filter: blur(0.5rem);
	backdrop-filter: blur(0.5rem);
}

header img {
	margin-left: 2rem;
	border: unset;
	border-radius: unset;
}

header a {
	color: var(--gray);
}

header a:hover {
	color: var(--white);
	padding-right: 0.5rem;
}

nav {
	margin-left: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
}

nav li {
	display: inline-block;
	margin-right: 1.5rem;
}

h1 {
	font-weight: 900;
	font-size: 2.75rem;
	margin: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

h2 {
	font-weight: 800;
	font-size: 2rem;
	margin: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

h3 {
	font-weight: 700;
}

h4 {
	font-weight: 600;
}

p {
	font-weight: 500;
	font-size: 1.2rem;
}

a {
	color: unset;
}

li {
	font-weight: 500;
	font-size: 1.2rem;
}

i {
	color: unset;
	background-color: unset;
}

iframe {
	border: none;
}

img {
	border: hidden;
	border-radius: 1rem;
}

.link {
	text-decoration: none;
}

.button {
	display: flex;
	padding: 0.5rem 1rem;
	color: var(--white);
	border: 0.125rem solid var(--white);
	border-radius: 1rem;
	text-decoration: none;
	font-size: 1.2rem;
	justify-content: center;
	align-items: center;
}

.text_red {
	color: #ff0000;
}

.text_green {
	color: #00ff00;
}

.center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hidden {
	opacity: 0;
	filter: blur(0.1rem);
	transform: translateX(-100%);
	transition: all 1s;
}

.show {
	opacity: 1;
	filter: blur(0);
	transform: translateX(0);
}

.logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.logo {
	display: flex;
	align-items: center;
	text-align: center;
}

.logo img {
	margin-bottom: 0.5rem;
}

.logo:nth-child(2) {
	transition-delay: 0.15s;
}

.logo:nth-child(3) {
	transition-delay: 0.3s;
}

.logo:nth-child(4) {
	transition-delay: 0.45s;
}

.logo:nth-child(5) {
	transition-delay: 0.6s;
}

.logo:nth-child(6) {
	transition-delay: 0.75s;
}

.logo:nth-child(7) {
	transition-delay: 0.9s;
}

.dark-mode-toggle {
	background: 0;
	box-sizing: border-box;
	cursor: pointer;
	width: 1.875rem;
	height: 1rem;
	border: 0.063rem solid rgba(255, 255, 255, 0);
	position: relative;
	right: 0;
}

.dark-mode-toggle span:nth-child(1) {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.875rem;
	height: 1rem;
	background-color: var(--white);
	border-radius: 1rem;
	box-shadow: inset 0.063rem 0.063rem 0.188rem 0 #0066;
	transition: 0.5s;
}

.dark-mode-toggle span:nth-child(2) {
	position: absolute;
	top: 0.188rem;
	left: 0.188rem;
	width: 0.625rem;
	height: 0.625rem;
	background-color: var(--black);
	border-radius: 50%;
	box-shadow: 0.063rem 0.063rem 0.125rem 0 #0066;
	transition: 0.5s;
}

footer {
	padding-top: 4rem;
}

footer * {
	margin: 0;
	padding: 0;
}

footer p {
	font-weight: 300;
	color: var(--gray);
}

.container {
	margin: auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.footer-col {
	width: 25%;
	padding-right: 1rem;
}

.footer-col h4 {
	color: var(--white);
	margin-bottom: 2rem;
	position: relative;
}

.footer-col h4::before {
	content: "";
	position: absolute;
	bottom: -0.625rem;
	background-color: #ff0000;
	height: 0.125rem;
	width: 3rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.625rem;
}

.footer-col ul li a {
	text-decoration: none;
	font-weight: 300;
	color: var(--gray);
}

.footer-col ul li a:hover {
	color: var(--white);
	padding-left: 0.5rem;
}

.footer-col .social-links a {
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
	margin: 0 0.625rem 0.625rem 0;
	text-align: center;
	line-height: 2.5rem;
	border-radius: 50%;
	color: var(--white);
}

.footer-col .social-links a:hover {
	color: var(--black);
	background-color: var(--white);
}

.accordion li {
	list-style: none;
	margin-bottom: 1.25rem;
	border-radius: 1rem;
	background: var(--black);
	box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.7),
		-6px -6px 10px -1px rgba(0, 0, 0, 0.25);
}

.accordion li label {
	display: flex;
	align-items: center;
	padding: 1rem;
	font-size: 1.25rem;
	cursor: pointer;
}

label::before {
	content: "+";
	margin-right: 0.625rem;
	font-size: 1.5rem;
	font-weight: 600;
}

input[type="radio"] {
	display: none;
}

.accordion .content {
	max-height: 0;
	overflow: hidden;
	transition: padding 0.5s;
}

.accordion input[type="radio"]:checked + label + .content {
	max-height: unset;
	padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before {
	content: "-";
}

.boxes {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.box {
	position: relative;
	width: 18.75rem;
	height: 18.75rem;
	margin: 2rem;
	background: var(--black);
	transition: 0.5s;
}

.box:hover {
	height: 25rem;
}

.box .imgbox {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box .imgbox img {
	opacity: 10%;
	transition: 0.5s;
}

.box:hover .imgbox img {
	opacity: 1;
}

.box:before {
	content: "";
	position: absolute;
	top: -0.125rem;
	left: -0.125rem;
	right: -0.125rem;
	bottom: -0.125rem;
	z-index: -1;
}

.box:after {
	content: "";
	position: absolute;
	top: -0.125rem;
	left: -0.125rem;
	right: -0.125rem;
	bottom: -0.125rem;
	z-index: -2;
	filter: blur(2rem);
}

.box:before,
.box:after {
	background: linear-gradient(225deg, #89ff00, #010615, #00bcd4);
}

.box:nth-child(2):before,
.box:nth-child(2):after {
	background: linear-gradient(225deg, #ff005e, #010615, #fbff00);
}

.box:nth-child(3):before,
.box:nth-child(3):after {
	background: linear-gradient(225deg, #772aff, #010615, #2196f3);
}

.box .box-content {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	opacity: 0;
	transition: 0.5s;
}

.box:hover .box-content {
	opacity: 1;
}

.box .box-content h2 {
	font-size: 1.25rem;
	line-height: 1.25rem;
}

.box .box-content h2 span {
	font-size: 1rem;
	font-weight: 500;
}

/*
.cards {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		margin: 0;
		padding: 0;
		overflow: hidden;
		gap: 0.5rem;
}

.cards:hover .card::after {
		opacity: 1;
}

.card {
		background-color: rgba(255, 255, 255, 0.1);
		border-radius: 0.625rem;
		cursor: pointer;
		height: 16.25rem;
		width: calc(33.33% - 1rem);
}

.card:hover::before {
		opacity: 1;
}

.card::before,
.card::after {
		border-radius: inherit;
		content: "";
		position: absolute;
		height: 100%;
		width: 100%;
		opacity: 0;
		transition: opacity 0.5s;
}

.card::before {
		background: radial-gradient(
				800px circle at var(--mouse-x) var(--mouse-y),
				rgba(255, 255, 255, 0.06),
				transparent 40%
		);
		z-index: 3;
}

.card::after {
		background: radial-gradient(
				600px circle at var(--mouse-x) var(--mouse-y),
				rgba(255, 255, 255, 0.4),
				transparent 40%
		);
		z-index: 1;
}

.card-content {
		background-color: var(--black);
		border-radius: inherit;
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		inset: 0.063rem;
		padding: 0.625rem;
		position: absolute;
		z-index: 2;
}

.card-image {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 8.75rem;
		overflow: hidden;
}

.card-image i {
		font-size: 6rem;
}

.card-info-wrapper {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-grow: 1;
		padding: 0 1.25rem;
}

.card-info {
		display: flex;
		align-items: flex-start;
		gap: 0.625rem;
}

.card-info i {
		line-height: 1.25rem;
}

.card-info-title h3 {
		line-height: 1.25rem;
		margin-top: 0;
}

.card-info-title h4 {
		color: var(--gray);
		font-size: 0.85rem;
}
*/

.cards {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	gap: 2rem;
	flex-wrap: wrap;
}

.cards .card {
	display: flex;
	width: 16rem;
	padding: 5rem 0rem;
	justify-content: center;
	align-items: center;
	border-radius: 2rem;
	background: var(--black);
}

.cards .card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.cards .icon {
	width: 8rem;
	height: rem;
	border-radius: 1rem;
}

.cards .text-wrapper {
	color: var(--white);
	text-align: center;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.75rem;
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 91vh;
}

.column-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.column-right {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 1023px) and (max-width: 1535px) {
	/*.card {
				width: 49%;
		}*/
	body {
		margin-left: 20%;
		margin-right: 20%;
	}
}

@media only screen and (max-width: 1023px) {
	body {
		margin-left: 5%;
		margin-right: 5%;
	}
}

@media only screen and (max-width: 767px) {
	body {
		margin-left: 5%;
		margin-right: 5%;
	}
	.hero-container {
		grid-template-columns: 1fr;
	}
	/*.cards {
				margin-top: 40vh;
		}
		.card {
				width: 100%;
		}*/
	.footer-col {
		width: 100%;
	}
}

@media only screen and (max-width: 639px) {
	body {
		margin-left: 5%;
		margin-right: 5%;
	}
	.footer-col {
		width: 100%;
	}
}

@media (prefers-reduced-motion) {
	.hidden {
		transition: none;
	}
}
